2006-08-25 Michael Schumacher <schumaml@cvs.gnome.org>
* configure.ac: added AC_LIBTOOL_WIN32_DLL as a preparation for
proper builds of shared libs on win32 & there's no need to define
OS_WIN32 here...
* babl/babl-extension.c: ...if the only place where it is needed
can be handled by HAVE_DLFCN_H
+2006-08-25 Michael Schumacher <schumaml@cvs.gnome.org>
+
+ * configure.ac: added AC_LIBTOOL_WIN32_DLL as a preparation for
+ proper builds of shared libs on win32 & there's no need to define
+ OS_WIN32 here...
+ * babl/babl-extension.c: ...if the only place where it is needed
+ can be handled by HAVE_DLFCN_H
+
2006-08-24 Øyvind Kolås <pippin@gimp.org>
* extensions/Makefile.in:
#include <sys/stat.h>
#include <unistd.h>
-#ifndef OS_WIN32
+#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#else
void *dlopen(const char *, int);
AM_INIT_AUTOMAKE(no-define)
AC_PROG_CC
+AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
AC_STDC_HEADERS
AM_SANITY_CHECK
AC_SUBST(PATHSEP)
AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
-AC_DEFINE(OS_WIN32, 1, "Define to 1 if you are compiling for Microsoft Windows.")
-
AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes")
dnl ===========================================================================